home *** CD-ROM | disk | FTP | other *** search
- txt_dtxt.text = xml_lang.txt_showtips;
- if(_global.show_tips)
- {
- this.gotoAndStop(2);
- }
- else
- {
- this.gotoAndStop(1);
- }
- this.onRelease = function()
- {
- if(_global.show_tips)
- {
- _global.show_tips = false;
- this.gotoAndStop(1);
- }
- else
- {
- _global.show_tips = true;
- this.gotoAndStop(2);
- }
- };
-